body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container img{
    height: 50px;
}

/* Header styles */
header {
    background-color: rgb(231, 140, 4);
    color: #fff;
    padding: 20px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.5em;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #f7f7f7;
}

/* Hero section styles */
.maintop-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background-image: url('wallpaperflare.com_wallpaper\ \(1\).jpg');
    background-size: cover;
    background-position: center;
    width: auto;
    height: auto;
    
  }
  
  .maintop-image {
    width: 40%;
    height: 500px;
    background-color: #fff;
    background-image: url('The\ Garage.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .maintop-text {
    width: 50%;
    padding: 0 50px;
    color: #fff;
  }
  
  .maintop-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  
  .maintop-text p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  
  /* Second maintop-text */
  .second.maintop-text {
    margin-top: 20px;
  }
  
  .second.maintop-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  /* Third maintop-text */
  .third.maintop-text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .third.maintop-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .third.maintop-text p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .third.maintop-text ul {
    list-style-type: disc;
    margin-left: 20px;
  }
  
  /* Media queries for smaller screens */
@media screen and (max-width: 768px) {
  .maintop-section {
    flex-direction: column;
    padding: 10px;
  }

  .maintop-image {
    width: 50%;
    height: 150px;
    margin-bottom: 20px;
  }

  .maintop-text {
    width: 90%;
    padding: 0 20px;
  }

  .maintop-text h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .maintop-text p,
  .third.maintop-text p {
    font-size: 1rem;
    line-height: 1.3;
  }
}

  /* Feature section styles */
  .feature-section {
    background-color: #333;
    color: #f7f7f7;
    display: flex;
    justify-content: center;
    padding: 100px 30px; /* Adjust the padding as per your design */
  }
  
  .feature-item {
    width: 100%;
    max-width: 400px; /* Adjust the maximum width as per your design */
    text-align: center;
    margin-bottom: 30px;
  }
  
  .feature-item i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
  }
  
  .feature-item h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .feature-item p {
    font-size: 1.2rem;
    line-height: 1.5;
  }


/* Footer styles */
footer {
    background-color: rgb(231, 140, 4);
    color: black;
    font-weight: bold;
    padding: 50px;
}

.footer-text {
    font-weight: bold;
    font-size: 1.7em;
  }

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: black;
    font-weight: bold;
}

.footer-social {
    margin-top: 20px;
}

.footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.footer-social li {
    margin-right: 10px;
}

.footer-social a {
    color: black;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: black;
}